home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / The World of Computer Software.iso / rm08.zip / SVGABGI.TXT < prev    next >
Text File  |  1993-01-27  |  7KB  |  188 lines

  1. The SVGA256.BGI driver provided here is the property of
  2. Jordan Powell Hargrave. The driver is provided here only
  3. for evaluation.  The driver is provided so that Turbo C and
  4. Turbo Pascal users can use it to display the 256 color XGF 
  5. files.  The following is the actual readme file distributed with
  6. the entire series of drivers released by Jordan Hargrave. 
  7.  
  8. **************************************************************
  9. COPYRIGHT 1991, JORDAN HARGRAPHIX SOFTWARE
  10. PORTIONS COPYRIGHT JOHN BRIDGES, 1990
  11.            CHRISTOPHER MORGAN, 1984
  12. **************************************************************
  13.  
  14. Here it is! The SuperVGA/Tweak BGI drivers you have all been waiting for! ;->
  15.  
  16.   These drivers support a wide range of VGA cards, and should work on
  17. all major brands.
  18.  
  19. Card types supported: (SuperVGA drivers)
  20.   Ahead, ATI, Chips & Tech, Everex, Genoa, Paradise, Oak, Trident (both 8800 
  21. and 8900, 9000), Tseng (both 3000 and 4000 chipsets) and Video7.
  22.   These drivers will also work on video cards with VESA capability.
  23.   The tweaked drivers will work on any register-compatible VGA card.
  24.  
  25. I have not tested these drivers on all these card types, so I can not guarantee
  26. perfect operation with your card.  I have tested them extensively
  27. on Trident, Tseng and ATI cards, and have had no problems. (Trident 8800
  28. cards occasionally have problems, especially older models)
  29.  
  30. Modes currently supported:
  31.   SuperVGA 16-color
  32.    0) Standard EGA/VGA 320x200x16
  33.    1) Standard EGA/VGA 640x200x16
  34.    2) Standard EGA/VGA 640x350x16
  35.    3) Standard VGA 640x480x16
  36.    4) SuperVGA/VESA 800x600x16
  37.    5) SuperVGA/VESA 1024x768x16
  38.  
  39.   SuperVGA 256-color
  40.    0) Standard VGA/MCGA 320x200x256
  41.    1) 256k Svga/VESA 640x400x256
  42.    2) 512k Svga/VESA 640x480x256
  43.    3) 512k Svga/VESA 800x600x256
  44.    4) 1024k Svga/VESA 1024x768x256
  45.    5) 256k Svga 640x350x256
  46.    6) 1280k+ VESA 1280x1024x256
  47.  
  48.  * NEW SuperVGA 32768-color BGI driver for Tseng ET4000 and ATI XL cards 
  49.    with Sierra HiColor DACs
  50.    
  51.   SuperVGA 32768-color
  52.    0) 320x200x32768
  53.    1) 640x350x32768
  54.    2) 640x400x32768
  55.    3) 640x480x32768
  56.    4) 800x600x32768
  57.  
  58.   * WARNING: The tweaked drivers do not use standard BIOS modes, instead
  59.     they program the CRTC directly.  You must have a register-compatible
  60.     VGA card to use these drivers. You must also be sure that your monitor
  61.     can handle the sync rates (the sync COULD damage your monitor)
  62.  
  63.   Tweaked 16-color
  64.    0) 704x528x16
  65.    1) 720x540x16
  66.    2) 736x552x16
  67.    3) 752x564x16
  68.    4) 768x576x16
  69.    5) 784x588x16
  70.    6) 800x600x16
  71.  
  72.   Tweaked 256-color
  73.    0) 320x400x256
  74.    1) 320x480x256
  75.    2) 360x480x256
  76.    3) 376x564x256
  77.    4) 400x564x256
  78.    5) 400x600x256
  79.    6) 320x240x256
  80.  
  81.  * New SuperVGA driver for S3 cards. (Orchid Farenheit 1280, Diamond Stealth)
  82.    Uses extended features of the S3 chip to provide enhanced performance.
  83.  
  84.   S3 Accelerator 16/256/32768-color
  85.    0) 640x480x256
  86.    1) 800x600x256
  87.    2) 1024x768x256
  88.    3) 800x600x16
  89.    4) 1024x768x16
  90.    5) 1280x960x16
  91.    6) 1280x1024x16
  92.    7) 640x480x32768
  93.  
  94. ----------------------------------------------------------------------------
  95. INSTALLATION:
  96.   Using the driver in existing programs is easy. (If you have the source)
  97.  
  98.   Check the files INITSVGA.C and INITSVGA.PAS for examples of installation
  99. into C and Pascal programs.
  100.  
  101. ----------------------------------------------------------------------------
  102. NOTE: 
  103.  
  104.  * The mouse cursor may not work in all modes of my driver.  This is because
  105.    no current mouse drivers support SuperVGA/Tweak modes.
  106.  
  107.  * Registerfarbgidriver DOES work properly with C/C++... (8/1/91)
  108.    Check INITSVGA.C and the makefile for examples of how to use.
  109.  
  110.  * Registerbgidriver also works with Turbo Pascal. Check the file newinit.pas
  111.    for an example.
  112.  
  113.  * Imagesize does not work. (the kernel does not call the driver to do this)
  114.    Use the following formulas:
  115.     * imsize = ((xwid >> 1)+1)*ywid+4;     (16-color)
  116.     * imsize = xwid*ywid+4;         (256-color)
  117.     * imsize = 2*xwid*ywid+4;        (32768-color)
  118.  
  119.  * The .CHR files needed by the VGADEMO program are version 1.00 (dated
  120.    October 1987), so if the fonts do not work properly with the demo program,
  121.    you are probably using the newer fonts (eg. 1.1 dated June 1989 do not work
  122.    properly).  This is a fault of the BGI kernel that the demo program was
  123.    compiled with (Turbo Pascal 5.5 doesn't recognize the newer version)
  124.  
  125.  * If nothing appears on the screen when you draw in 256/32k modes, try
  126.    setting the draw color to white (15 on Svga256, see notes.32k for Svga32k)
  127.    The BGI kernel sets the initial draw color to the maximum color (255),
  128.    which is usually black.
  129.  
  130. ----------------------------------------------------------------------------
  131. WARNING: The drivers do not test to see if the card installed is
  132. actually a VGA card (If the Svga drivers do not detect a SuperVGA card, they 
  133. treat the card as a standard VGA), so DO NOT use the drivers if you do not 
  134. have a VGA card installed.
  135.  
  136. -------------------------------------------------------------------------
  137. REGISTRATION:
  138.   I have decided to release these drivers free of charge,
  139. although donations would be greatly appreciated and certainly
  140. expedite the release of future versions. :->
  141.   The drivers have not been crippled in any way, though beta releases of new
  142. drivers may have some functions yet unimplemented.  
  143.  
  144. Registration fees:
  145.  
  146.     SuperVGA S3            $20
  147.     SuperVGA 32768            $20
  148.     SuperVGA 256             $20
  149.     SuperVGA 16            $20
  150.     Tweak 16            $20
  151.     Tweak 256            $20
  152.  
  153.     Any two:            $30
  154.     Any three:            $40
  155.     Any four:            $50
  156.     Any five:            $60
  157.     All six:            $70
  158.  
  159. With donations of $20 and up, you will be considered a registered user.
  160. Registered users get the full source code and upgrades on future releases.
  161.  
  162. From September 1-May 8, please send checks/money to:
  163.     Jordan Hargrave
  164.     1000 Morewood Ave, Box #3277
  165.     Pittsburgh, PA 15213
  166.     (412) 268-4493
  167.  
  168. From May 8-September 1, send to:
  169.     Jordan Hargrave
  170.     1615 Burnley Road
  171.     Charlotte, NC 28210
  172.     (704) 553-2332
  173.  
  174. I have started working on a new graphics library that will support resolutions
  175. from 160x200 (Ick! ;->) all the way up to 1280x1024, and from 1-bit color
  176. to 24-bit color.  It will support a wide range of cards and I need testers
  177. for XGA/8514/Hercules Graphics Station cards.
  178. (Note: This library is NOT a BGI driver.  It attempts to fix some of the 
  179.        problems I've found with the BGI kernel, ie. the number of colors is
  180.        limited to 256 in the BGI kernel)
  181.  
  182. *===============================*===========================================*
  183. | Jordan Powell Hargrave    |   Internet:    jh5y@andrew.cmu.edu        |
  184. | 1000 Morewood Ave, Box #3277  |     Bitnet:    jh5y%andrew.cmu.edu@cmccvb  |
  185. | Pittsburgh, PA 15213        |       UUCP:    uunet!andrew.cmu.edu!jh5y   |
  186. | (412) 268-4493         | Compuserve:   [72510,1143]            |
  187. *===============================*===========================================*
  188.